home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / panic.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  550b  |  32 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    Brewster@think.com
  6. */
  7.  
  8.  
  9. /* Header file for panic.c */
  10.  
  11. #ifndef PANIC_H
  12. #define PANIC_H
  13.  
  14. #include "cdialect.h"
  15.  
  16. #ifdef __cplusplus
  17. /* declare these as C style functions */
  18. extern "C"
  19.     {
  20. #endif /* def __cplusplus */
  21.  
  22. #ifdef ANSI_LIKE    /* use ansi */
  23. void    panic _AP((char* format,...)); 
  24. #else /* use K & R */
  25. void    panic _AP(()); 
  26. #endif
  27.  
  28. #ifdef __cplusplus
  29.     }
  30. #endif /* def __cplusplus */
  31. #endif /* ndef PANIC_H */
  32.